home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / envman.lha / EnvManager / envopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-13  |  616 b   |  24 lines

  1. #ifndef ENVOPT_H
  2. #define ENVOPT_H
  3.  
  4. #include <window.h>
  5. #include <gadgetlist.h>
  6. #include <gadgets/string.h>
  7. #include <gadgets/checkbox.h>
  8.  
  9. class optwindow : public window
  10. {
  11.     void fedit(gadget *g, ULONG classe, USHORT code) ;
  12.     void fimport(gadget *g, ULONG classe, USHORT code) ;
  13.     void fexport(gadget *g, ULONG classe, USHORT code) ;
  14.     void finfo(gadget *g, ULONG classe, USHORT code) ;
  15. public:
  16.     optwindow(short l, short t, short w, short h) : window(l,t,w,h) {}
  17.     void open(screen *ns) ;
  18.     void handlevkey(USHORT code) ;
  19.     string *scontents ;
  20.     checkbox *cglob ;
  21.     checkbox *carch ;
  22. };
  23. #endif
  24.